home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / send / programs / tkSend2 < prev    next >
Encoding:
Text File  |  1993-11-15  |  155 b   |  9 lines

  1. #!/pub/local/bin/wish -f
  2.  
  3. button .button -command sendTo -text "I'm a Tk button"
  4. pack .button -side left
  5.  
  6. proc sendTo {} {
  7.   send xmSend2 incrementLabel
  8. }
  9.